home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 25 / CU Amiga Magazine's Super CD-ROM 25 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-08].iso / CUCD / Programming / ixemul / sdk / man / cat7 / operator.0 < prev    next >
Encoding:
Text File  |  1998-06-15  |  1.3 KB  |  30 lines

  1.  
  2. OPERATOR(7)                  UNIX Reference Manual                 OPERATOR(7)
  3.  
  4. NNAAMMEE
  5.      ooppeerraattoorr - C operator precedence and order of evaluation
  6.  
  7. DDEESSCCRRIIPPTTIIOONN
  8.            Operator                        Associativity
  9.            --------                        -------------
  10.            () [] -> .                      left to right
  11.            ! ~ ++ -- - (type) * & sizeof   right to left
  12.            * / %                           left to right
  13.            + -                             left to right
  14.            << >>                           left to right
  15.            < <= > >=                       left to right
  16.            == !=                           left to right
  17.            &                               left to right
  18.            ^                               left to right
  19.            |                               left to right
  20.            &&                              left to right
  21.            ||                              left to right
  22.            ?:                              right to left
  23.            = += -= etc.                    right to left
  24.            ,                               left to right
  25.  
  26. FFIILLEESS
  27.      /usr/share/misc/operator
  28.  
  29. BSD Experimental                 June 9, 1993                                1
  30.